GET api/communication/campaign/readcount?id[0]={id[0]}&id[1]={id[1]}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | Collection of integer |
Required |
Body Parameters
None.
Response Information
Resource Description
WebMethodResultOfListOfCampaignReadCount| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Collection of CampaignReadCount |
None. |
|
| Success | boolean |
None. |
|
| ErrorText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": [
{
"CampaignId": 1,
"RecipientCount": 2,
"ReadCount": 3,
"ReadPercentage": 150
},
{
"CampaignId": 1,
"RecipientCount": 2,
"ReadCount": 3,
"ReadPercentage": 150
}
],
"Success": true,
"ErrorText": "sample string 2"
}
application/javascript
Sample:
{"Result":[{"CampaignId":1,"RecipientCount":2,"ReadCount":3,"ReadPercentage":150},{"CampaignId":1,"RecipientCount":2,"ReadCount":3,"ReadPercentage":150}],"Success":true,"ErrorText":"sample string 2"}
application/xml, text/xml
Sample:
<WebMethodResultOfListOfCampaignReadCount xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Success>true</Success>
<ErrorText>sample string 2</ErrorText>
<Result>
<CampaignReadCount>
<CampaignId>1</CampaignId>
<RecipientCount>2</RecipientCount>
<ReadCount>3</ReadCount>
</CampaignReadCount>
<CampaignReadCount>
<CampaignId>1</CampaignId>
<RecipientCount>2</RecipientCount>
<ReadCount>3</ReadCount>
</CampaignReadCount>
</Result>
</WebMethodResultOfListOfCampaignReadCount>